home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 August (Alt)
/
CHIP 2005-08.1.iso
/
program
/
guvenlik
/
syslinux-3.07.exe
/
dos
/
mystuff.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2004-12-15
|
237 b
|
16 lines
#ifndef MYSTUFF_H
#define MYSTUFF_H
#define NULL ((void *)0)
unsigned int skip_atou(const char **s);
unsigned int atou(const char *s);
static inline int
isdigit(int ch)
{
return (ch >= '0') && (ch <= '9');
}
#endif /* MYSTUFF_H */